home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Workspace / TickleServices / Documentation / E.Aux / WSNotify.m < prev   
Encoding:
Text File  |  1994-03-22  |  472 b   |  22 lines

  1. /* This program was written and contributed by
  2.  * Gordie Freedman <gordie@cyclesoft.com>
  3.  *
  4.  * This is a good example of why TickleServices needs loadable Tcl
  5.  * built-ins.
  6.  */
  7.  
  8. /* cc -o WSNotify -s -O WSNotify.m -lNeXT_s */
  9. /* cc -arch m68k -arch i386 -o WSNotify -s -O WSNotify.m -lNeXT_s */
  10.  
  11. #import <appkit/Application.h>
  12.  
  13. void main(int argc, char *argv[]) 
  14. {
  15.     [Application new];
  16.  
  17.     [[Application workspace] defaultsChanged];        
  18.     [NXApp free];
  19.     
  20.     exit(0);
  21. }
  22.